@charset "utf-8";
/* 颜色文件导入 */
@import url("green.css");
/* Mobile menu */
.select-menu {
	display: none;
}
.m-show {
	display: none;
}

@media (max-width:767px) {
.m-show {
	display: block;
}
.m-hide {
	display: none!important;
}
}
/*	基础样式 */
html {
/*overflow-y:auto;
	background:#fff;*/
}
:focus {
	outline-color: transparent!important;
	outline-style: none!important;
}
@font-face {
	font-family: "dincond-regular";
	font-style: normal;
	font-weight: normal;
	src: url("../font/dincond-regular-webfont.eot?#iefix") format("embedded-opentype"), url("../font/dincond-regular-webfont.woff") format("woff"), url("../font/dincond-regular-webfont.ttf") format("truetype");
}
body {
	margin: 0;
	padding: 80px 0 0;
	font-family: "dincond-regular", \5FAE\8F6F\96C5\9ED1, \5b8b\4f53, arial;
	/* 字体定义的顺序为英文Century Gothic、中文微软雅黑、中文宋体、英文Arial */
	font-size: 87.5%;
	line-height: 1.7;
	color: #555;
	-webkit-font-smoothing: subpixel-antialiased;
	-webkit-text-size-adjust: 100%;
	cursor: default;
}

@media (max-width:767px) {
body {
	font-family: Helvetica;
 // 手机端无需定义中文字体，使用系统默认即可。英文字体和数字字体可使用 Helvetica ，三种系统都支持。  font-size:100%;
	line-height: 1.5;
	margin: 0;
	padding: 0 0 50px;
}
}
hr {
	border-bottom: none;
	border-top: none;
}
a {
	text-decoration: none;
	color: #666;
}
a:hover {
	text-decoration: none;
	color: #212121;
}
/* 标题、段落 */
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.7;
	margin: 0;
	clear: both;
	display: block;
	padding: 30px 20px 10px 0;
}
h1 {
	font-size: 250%;
	text-transform: uppercase;
}
h2 {
	text-transform: uppercase;
	font-size: 200%;
}
h3 {
	text-transform: uppercase;
	font-size: 175%;
}
h4 {
	font-size: 150%;
	text-transform: uppercase;
}
h5 {
	text-transform: uppercase;
	font-size: 125%;
}
h6 {
	text-transform: uppercase;
	font-size: 112.5%;
}

@media (max-width:767px) {
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.7;
	margin: 0;
	clear: both;
	display: block;
	padding: 15px 10px 5px 0;
}
h1 {
	font-size: 162.5%;
	text-transform: uppercase;
}
h2 {
	font-size: 150%;
	text-transform: uppercase;
}
h3 {
	font-size: 137.5%;
	text-transform: uppercase;
}
h4 {
	font-size: 125%;
	text-transform: uppercase;
}
h5 {
	font-size: 112.5%;
	text-transform: uppercase;
}
h6 {
	text-transform: uppercase;
	font-size: 100%;
}
}
p {
	padding: 5px 10px;
	margin: 0;
	text-indent: 2em;
}
hr {
	border: none;
	height: 1px;
	margin: 10px 0;
	background-color: #efefef;
	color: #efefef
}
.hr {
	border-top: 1px solid #e3e3e3;
	margin: 15px 0 25px;
}
/* 图片 */
img {
	/*width:100%;*/
	height: auto;
	max-width: 100%;
}
p img {
	margin-left: -2em;/* 保证在段落空两格的情况下，段落下的图片可以顶头显示 */
}
/* Backgrounds */
.bg-white {
	background-color: #fff;
}
.bg-lighter {
	background-color: #f3f3f3;
}
.bg-light {
	background-color: #e9e9e9;
}
.bg-lighter-gray {
	background-color: #d6d6d6;
}
.bg-light-gray {
	background-color: #b3b3b3;
}
.bg-gray {
	background-color: #363636;
}
.bg-grayer {
	background-color: #252525;
}
.bg-dark {
	background-color: #141414;
}
.bg-lighter-orange {
	background-color: #f6e8e1;
}
/* 设置内联, 减少浮动带来的bug */
.fn-left, .fn-right {
	display: inline;
}
.fn-left {
	float: left;
}
.fn-right {
	float: right;
}
.fn-no-float {
	float: none;
}
/* 清理浮动 */
.fn-clear:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}
.fn-clear {
	clear: both;
	zoom: 1; /* for IE6 IE7 */
}
/* 普通清理浮动 */
.clear {
	clear: both;
	font-size: 0px;
	height: 0;
	line-height: 0;
}
/* 隐藏、显示 */
.fn-display-hide {
	display: none;
}
.fn-display-block {
	display: block;
}
.fn-display-inlineblock {
	display: inline-block;
}
.fn-display-tablecell {
	display: table-cell;
}
/* 文字 */
.text-align-left {
	text-align: left;
}
.text-align-right {
	text-align: right;
}
.text-align-center {
	text-align: center;
}
.text-indent-none {
	text-indent: 0;
}
.font-size-xs {
	font-size: 75%;
}
.font-size-s {
	font-size: 87.5%;
}
.font-size-m {
	font-size: 100%;
}
.font-size-l {
	font-size: 112.5%;
}
.font-size-xl {
	font-size: 125%;
}
.font-size-xxl {
	font-size: 150%;
}
.font-size-xxxl {
	font-size: 200%;
}
.font-size-xxxxl {
	font-size: 250%;
}
/* 针对中文的字体粗细设置 */
.font-weight-normal {
	font-weight: 400;
}
.font-weight-bold {
	font-weight: 700;
}
/* 针对英文的字体粗细设置 */
.font-weight-100 {
	font-weight: 100;
}
.font-weight-200 {
	font-weight: 200;
}
.font-weight-300 {
	font-weight: 300;
}
.font-weight-400 {
	font-weight: 400;
}
.font-weight-500 {
	font-weight: 500;
}
.font-weight-600 {
	font-weight: 600;
}
.font-weight-700 {
	font-weight: 700;
}
.font-weight-800 {
	font-weight: 800;
}
.font-weight-900 {
	font-weight: 900;
}
.font-color-white {
	color: #fff;
}
.font-color-lighter {
	color: #ccc;
}
.font-color-gray {
	color: #999;
}
.font-color-deeper {
	color: #666;
}
.font-color-dark {
	color: #333;
}
.font-color-black {
	color: #000;
}
/* box position 容器定位 */
.position-relative {
	position: relative;
}
.position-fixed {
	position: fixed;
}
.position-absolute {
	position: absolute;
}
/* 空行 */
.spacer1 {
	height: 1px !important;
}
.spacer5 {
	height: 5px !important;
}
.spacer10 {
	height: 10px !important;
}
.spacer15 {
	height: 15px !important;
}
.spacer20 {
	height: 20px !important;
}
.spacer25 {
	height: 25px !important;
}
.spacer30 {
	height: 30px !important;
}
.spacer35 {
	height: 35px !important;
}
.spacer40 {
	height: 40px !important;
}
.spacer45 {
	height: 45px !important;
}
.spacer50 {
	height: 50px !important;
}
.spacer55 {
	height: 55px !important;
}
.spacer60 {
	height: 60px !important;
}
.spacer65 {
	height: 65px !important;
}
.spacer70 {
	height: 70px !important;
}
.spacer75 {
	height: 75px !important;
}
.spacer80 {
	height: 80px !important;
}
.spacer85 {
	height: 85px !important;
}
.spacer90 {
	height: 90px !important;
}
.spacer95 {
	height: 95px !important;
}
.spacer100 {
	height: 100px !important;
}
.spacer120 {
	height: 120px !important;
}
.spacer150 {
	height: 150px !important;
}
/* 内边距 */
.padding-5 {
	padding: 5px;
}
.padding-10 {
	padding: 10px;
}
.padding-15 {
	padding: 15px;
}
.padding-20 {
	padding: 20px;
}
.padding-25 {
	padding: 25px;
}
.padding-30 {
	padding: 30px;
}
.padding-0-5 {
	padding: 0 5px;
}
.padding-0-10 {
	padding: 0 10px;
}
.padding-0-15 {
	padding: 0 15px;
}
.padding-0-20 {
	padding: 0 20px;
}
.padding-0-25 {
	padding: 0 25px;
}
.padding-0-30 {
	padding: 0 30px;
}
.padding-0-35 {
	padding: 0 35px;
}
.padding-0-40 {
	padding: 0 40px;
}
.padding-10-0 {
	padding: 10px 0;
}
.padding-10-5 {
	padding: 10px 5px;
}
.padding-10-15 {
	padding: 10px 15px;
}
.padding-10-20 {
	padding: 10px 20px;
}
.padding-10-25 {
	padding: 10px 25px;
}
.padding-10-30 {
	padding: 10px 30px;
}
.padding-20-0 {
	padding: 20px 0;
}
.padding-20-5 {
	padding: 20px 5px;
}
.padding-20-15 {
	padding: 20px 15px;
}
.padding-20-20 {
	padding: 20px 20px;
}
.padding-20-25 {
	padding: 20px 25px;
}
.padding-20-30 {
	padding: 20px 30px;
}
.padding-none {
	padding: 0;
}
.padding-top-none {
	padding-top: 0;
}
.padding-right-none {
	padding-right: 0;
}
.padding-bottom-none {
	padding-bottom: 0;
}
.padding-left-none {
	padding-left: 0;
}
/* 外边距 */
.margin-5 {
	margin: 5px;
}
.margin-10 {
	margin: 10px;
}
.margin-15 {
	margin: 15px;
}
.margin-20 {
	margin: 20px;
}
.margin-25 {
	margin: 25px;
}
.margin-30 {
	margin: 30px;
}
.margin-0-5 {
	margin: 0 5px;
}
.margin-0-10 {
	margin: 0 10px;
}
.margin-0-15 {
	margin: 0 15px;
}
.margin-0-20 {
	margin: 0 20px;
}
.margin-0-25 {
	margin: 0 25px;
}
.margin-0-30 {
	margin: 0 30px;
}
.margin-0-35 {
	margin: 0 35px;
}
.margin-0-40 {
	margin: 0 40px;
}
.margin-10-0 {
	margin: 10px 0;
}
.margin-10-5 {
	margin: 10px 5px;
}
.margin-10-15 {
	margin: 10px 15px;
}
.margin-10-20 {
	margin: 10px 20px;
}
.margin-10-25 {
	margin: 10px 25px;
}
.margin-10-30 {
	margin: 10px 30px;
}
.margin-20-0 {
	margin: 20px 0;
}
.margin-20-5 {
	margin: 20px 5px;
}
.margin-20-15 {
	margin: 20px 15px;
}
.margin-20-20 {
	margin: 20px 20px;
}
.margin-20-25 {
	margin: 20px 25px;
}
.margin-20-30 {
	margin: 20px 30px;
}
.margin-none {
	margin: 0;
}
.margin-top-none {
	margin-top: 0;
}
.margin-right-none {
	margin-right: 0;
}
.margin-bottom-none {
	margin-bottom: 0;
}
.margin-left-none {
	margin-left: 0;
}
.margin-align-center {
	margin-left: auto;
	margin-right: auto;
}
/* 边框 */
.border {
	border: 1px solid #ddd;
}
.border-top {
	border-top: 1px solid #ddd;
}
.border-right {
	border-right: 1px solid #ddd;
}
.border-bottom {
	border-bottom: 1px solid #ddd;
}
.border-left {
	border-left: 1px solid #ddd;
}
.border-top-none {
	border-top: none;
}
.border-right-none {
	border-right: none;
}
.border-bottom-none {
	border-bottom: none;
}
.border-left-none {
	border-left: none;
}
.border-dashed {
	border-style: dashed;
	border-top: none;
	border-left: none;
	border-right: none;
}
/* 不受媒体查询影响的百分比显示块元素 */
.col-1-1 {
	width: 100%;
}
.col-2-1 {
	width: 50%;
}
.col-3-1 {
	width: 33.3333333333%;
}
.col-3-2 {
	width: 66.6666666667%;
}
.col-4-1 {
	width: 25%;
}
.col-4-3 {
	width: 75%;
}
.col-5-1 {
	width: 20%;
}
.col-5-2 {
	width: 40%;
}
.col-5-3 {
	width: 60%;
}
.col-5-4 {
	width: 80%;
}
/* 翻页 */
.pagination {
	text-align: right;
}

@media (max-width:767px) {
.pagination {
	text-align: center;
	font-size: 87.5%;
	color: #f80;
}
.pagination a {
	color: #f80;
}
}
/*  手风琴  */
.accordion-group {
	border-radius: 0px !important;
	border: 0px;
	margin-bottom: 1px !important;
	padding: 0;
}
/*.accordion-heading {
	background: #EBEBEB;
}*/
.accordion-heading {
	background:#f6f6f6;
	border-radius:3px;
	border:1px solid #ddd;
}
.accordion-heading a {
	color: #444;
}
.accordion-inner {
	background: #fafafa;
	border: 0px solid #e5e5e5;
	padding: 0 0 20px !important;
}
.accordion-toggle {
	padding: 10px !important;
	padding-left: 55px !important;
	background: url(images/accordion-toogle.png) 20px center no-repeat;
}
.accordion-active {
	padding-left: 55px !important;
	background: url(images/accordion-active.png) 20px center no-repeat;
}
/* 引用文字 */
blockquote {
	margin: 10px 30px;
	/*border-left: 5px solid #cbcbcb;*/
	border: none;
}
/* 按钮  */
.btn {
	color: #fff;
	height: 52px;
	line-height: 52px;
	padding: 0px 22px;
	text-shadow: none;
	border-radius: 4px;
	-webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0 !important;
	box-shadow: rgba(0, 0, 0, 0) 0 0 0 !important;
	border: 0px;
	margin-bottom: 8px;
	font-size: 18px;
}
.btn-small {
	color: #fff;
	height: 32px;
	line-height: 32px;
	padding: 0px 18px;
	text-shadow: none;
	border-radius: 3px;
	-webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0 !important;
	box-shadow: rgba(0, 0, 0, 0) 0 0 0 !important;
	border: 0px;
	margin-bottom: 8px;
	font-size: 14px;
}
.btn-mini {
	color: #fff;
	height: 22px;
	line-height: 16px;
	padding: 0px 14px;
	text-shadow: none;
	border-radius: 3px;
	-webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0 !important;
	box-shadow: rgba(0, 0, 0, 0) 0 0 0 !important;
	border: 0px;
	margin-bottom: 8px;
	font-size: 12px;
}
/* 表格 */
.table {
	width: 100%;
}
.table-bordered {
	border: 1px solid #ddd;
	border-collapse: separate;
	border-left: 0;
}
.table-bordered caption {
	font-size: 125%;
	font-weight: 700;
	padding: 0 0 10px;
}
.table-bordered th, .table-bordered td {
	border-left: 1px solid #ddd;
}
.table th, .table td {
	padding: 8px 12px;
	text-align: left;
	vertical-align: middle;
	border-top: 1px solid #ddd;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}
.table-bordered thead:first-child tr:first-child>th:first-child, .table-bordered tbody:first-child tr:first-child>td:first-child, .table-bordered tbody:first-child tr:first-child>th:first-child {
	-webkit-border-top-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	border-top-left-radius: 0px;
}
.table-bordered thead:last-child tr:last-child>th:first-child, .table-bordered tbody:last-child tr:last-child>td:first-child, .table-bordered tbody:last-child tr:last-child>th:first-child, .table-bordered tfoot:last-child tr:last-child>td:first-child, .table-bordered tfoot:last-child tr:last-child>th:first-child {
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-bottom-left-radius: 0px;
}
.table-bordered thead:first-child tr:first-child>th:last-child, .table-bordered tbody:first-child tr:first-child>td:last-child, .table-bordered tbody:first-child tr:first-child>th:last-child {
	-webkit-border-top-right-radius: 0px;
	-moz-border-radius-topright: 0px;
	border-top-right-radius: 0px;
}
.table-bordered thead:last-child tr:last-child>th:last-child, .table-bordered tbody:last-child tr:last-child>td:last-child, .table-bordered tbody:last-child tr:last-child>th:last-child, .table-bordered tfoot:last-child tr:last-child>td:last-child, .table-bordered tfoot:last-child tr:last-child>th:last-child {
	-webkit-border-bottom-right-radius: 0px;
	-moz-border-radius-bottomright: 0px;
	border-bottom-right-radius: 0px;
}
thead {
	display: table-header-group;
	vertical-align: middle;
	border-color: inherit;
}
tbody {
	display: table-row-group;
	vertical-align: middle;
	border-color: inherit;
}
.table-hover tbody tr:hover>td, .table-hover tbody tr:hover>th {
	color: #111;
	background-color: #c8c8c8;
}

@media (max-width:767px) {
.table {
	font-size: 87.5%;
}
.table-bordered caption {
	font-size: 100%;
	font-weight: 700;
	padding: 0 0 10px;
}
}
/* 滚动内容区域 */ 
.scrollable {
	height: 420px;
}
.scrollable-2 {
	height: 520px;
}
.scrollable-3 {
	height: 175px;
}
.scrollable-4 {
	height: 420px;
}
.scrollable-5 {
	height: 230px;
}
.non-scrollable-3 {
	height: 170px;
}
/* 列表 */
/* 文章列表标准格式 li */
.list-1 {
	padding: 10px 30px;
	margin: 0;
	list-style: none;
}
.list-1 li {
	margin: 0;
	position: relative;
	height: 45px;
	line-height: 45px;
	border-bottom: 1px dotted #ddd;
}
.list-1 i {
	margin: 15px 10px 0;
}
.list-1 a {
	text-decoration: none;
	font-size: 125%;
	width: 80%;
	display: inline-block;
	/* 以下样式 使文字超出容器范围自动添加...号 */
	word-break: keep-all;/* 不换行 */
	white-space: nowrap;/* 不换行 */
	overflow: hidden; /*内容超出宽度时隐藏超出部分的内容 */
	text-overflow: ellipsis; /*当对象内文本溢出时显示省略标记(...) ；需与overflow:hidden;一起使用。*/
}
.list-1 .date {
	color: #999;
	position: absolute;
	top: 0;
	right: 10px;
}

@media (max-width:767px) {
.list-1 {
	padding: 0;
	margin: 0;
	list-style: none;
}
.list-1 li {
	margin: 0;
	height: auto;
	line-height: auto;
	position: static;
}
.list-1 i {
	margin: 10px 0 0;
}
.list-1 a {
	text-decoration: none;
	font-size: 100%;
	width: 90%;
	display: inline-block;
	margin: -5px 0 5px;
	/* 以下样式 使文字超出容器范围自动添加...号 */
	word-break: normal;/* 换行 */
	white-space: normal;/* 换行 */
	overflow: auto; /*内容超出宽度时不隐藏超出部分的内容 */
	text-overflow: inherit; /*没有对象内文本溢出。*/
}
.list-1 .date {
	color: #ccc;
	position: static;
	font-size: 160%;
	top: 0;
	right: 0;
}
}
/* 无时间列表，有列表符 */
.list-2 {
	margin: 0;
}
.list-2 li {
	list-style: none;
	margin: 0;
	padding: 10px 0 0;
	position: relative;
	border-bottom: 1px dashed #ddd;
}
.list-2 i {
	margin-right: 5px;
}
.list-2 li a {
	text-decoration: none;
	display: inline-block;
	width: 100%;
	/* 以下样式 使文字超出容器范围自动添加...号 */
	word-break: keep-all; /*不换行 */
	white-space: nowrap;/* 不换行 */
	overflow: hidden; /*内容超出宽度时隐藏超出部分的内容 */
	text-overflow: ellipsis; /*当对象内文本溢出时显示省略标记(...) ；需与overflow:hidden;一起使用。*/
}

@media (max-width:767px) {
.list-2 li {
	list-style: none;
	margin: 0;
	padding: 10px 0 0;
	position: static;
	border-bottom: 1px dashed #ddd;
}
}
/* 最简版的列表，无列表符号，无右侧信息 */
.list-3 {
	padding: 15px 0 10px;
	margin: 0px;
}
.list-3 a {
	text-decoration: none;
	color: #454545;
	font-size: 100%;
	display: inline-block;
}
.list-3 a:hover {
	text-decoration: none;
	color: #c50524;
}
.list-3 li {
	margin: 0;
	padding: 0 0 6px;
	/* 以下样式 使文字超出容器范围自动添加...号 */
	word-break: keep-all;/* 不换行 */
	white-space: nowrap;/* 不换行 */
	overflow: hidden; /*内容超出宽度时隐藏超出部分的内容 */
	text-overflow: ellipsis; /*当对象内文本溢出时显示省略标记(...) ；需与overflow:hidden;一起使用。*/
}
/* 子菜单用列表 */
.list-5 {
	margin: 10px 30px 0;
}
.list-5 li {
	list-style: none;
	margin: 0;
	padding: 5px 0;
	position: relative;
	border-bottom: 1px dashed #ddd;
}
.list-5 i {
	margin-right: 5px;
}
.list-5 li a {
	text-decoration: none;
	display: inline-block;
}

/*  表单	*/
select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
	display: inline-block;
	height: 30px;
	padding: 0px 12px;
	margin-bottom: 10px;
	font-size: 16px;
	line-height: 30px;
	color: #555;
	vertical-align: middle;
}
/*form 404 */ 
.form-404 {
	border: 0px solid;
	overflow: hidden;
	margin: 20px;
	margin: 0px auto;
	width: 40%;
}
.form-404 input {
	position: relative;
	height: 52px;
	width: 75%;
	padding: 0% 0%;
	margin: 0px;
	color: #999999;
	background: #222222;
	border-radius: 0px;
	border: 0px;
	font-size: 14px;
	font-family: 'Source Sans Pro', sans-serif;
	outline: none;
	text-indent: 10px;
	float: left;
}
.form-404 .btn {
	color: #fff;
	line-height: 52px;
	width: 23%;
	padding: 0px 1%;
	margin: 0px;
	text-shadow: none;
	border-radius: 0px;
	-webkit-box-shadow: rgba(0, 0, 0, 0) 0 0 0 !important;
	box-shadow: rgba(0, 0, 0, 0) 0 0 0 !important;
	border: 0px;
	font-size: 14px;
	font-family: 'Source Sans Pro', sans-serif;
}
/* form main */
.form-main {
	border: none;
	overflow: hidden;
	padding: 0 30px;
	margin: 0;
}
.form-main input:focus, .form-main textarea:focus, .form-404 input:focus, .form-search .search-input:focus {
	-webkit-box-shadow: rgba(0, 0, 0, 0.0) 0 0px 0px inset, rgba(0, 0, 0, 0.0) 0 0 0px;
	border-color: rgba(0, 0, 0, 0.0);
	box-shadow: rgba(0, 0, 0, 0.0) 0 0px 0px inset, rgba(0, 0, 0, 0.0) 0 0 0px;
	outline: 0;
}
.form-main input, .form-main textarea {
	position: relative;
	height: 30px;
	width: 100%;
	padding: 10px 0;
	margin-top: 10px;
	color: #999999;
	background: #f3f3f3;
	border-radius: 4px;
	border: 1px solid #ddd;
	font-size: 100%;
	text-indent: 10px;
	outline: none;
}
.form-main textarea {
	height: 120px;
	resize: none;
	margin-bottom: 0;
}

@media (max-width:767px) {
.input-append input[type="text"] {
	display: inline-block;
	width: auto;
	height: 32px;
}
.form-main {
	overflow: auto;
	padding: 0 5px;
	margin: 0;
	z-index: 9;
}
.form-main input:focus, .form-main textarea:focus, .form-404 input:focus, .form-search .search-input:focus {
	-webkit-box-shadow: rgba(0, 0, 0, 0.0) 0 0px 0px inset, rgba(0, 0, 0, 0.0) 0 0 0px;
	border-color: rgba(0, 0, 0, 0.0);
	box-shadow: rgba(0, 0, 0, 0.0) 0 0px 0px inset, rgba(0, 0, 0, 0.0) 0 0 0px;
	outline: 0;
}
.form-main input, .form-main textarea {
	position: static;
	height: 30px;
	width: 99%;/* 给边框留出空间 */
	padding: 0;
	margin-top: 5px;
	color: #999999;
	background: #f3f3f3;
	border-radius: 4px;
	border: 1px solid #ddd;
	font-size: 100%;
	text-indent: 10px;
	outline: none;
}
.form-main textarea {
	height: 120px;
	resize: none;
	margin-bottom: 0px;
}
.form-main .thank {
	margin-bottom: 10px;
}
.form-main button.btn {
	display: block;
	width: 100%;
}
}
.error {
	display: none;
}
#ajaxsuccess {
	font-size: 16px;
	font-weight: bold;
	width: 100%;
	display: none;
	clear: both;
	color: #fff;
}
/* Sliders */
.flexslider {
	border: none;
	border-radius: 0;
	box-shadow: none;
	margin: 0;
}
.slider2 {
	border: none;
	border-radius: 0;
	box-shadow: none;
	margin: 0 0 0 0;
	background-color: transparent;
	margin-bottom: 48px !important;
}
.slider2 .slides li {
	width: 100%;
	margin: 0px auto;
	height: 280px
}
.slider2 .slides img {
	width: 100%;
	max-width: 300px;
	height: auto;
	margin: 0px auto;
	max-height: 280px;
}
.slider3 {
	border: 0px solid;
	border-radius: 0;
	box-shadow: none;
	margin: 0px 0 0px 0 !important;
	margin-bottom: 40px !important;
	background-color: transparent;
}
.slider3 .slides img {
	width: 100%;
	height: auto;
	vertical-align: middle;
	display: inline;
}
.slider4 {
	border: 0px solid;
	border-radius: 0;
	box-shadow: none;
	margin: 0px 0 0px 0 !important;
	margin-bottom: 40px !important;
	background-color: transparent;
}
.slider4 .slides img {
	width: auto;
	height: auto;
	vertical-align: middle;
	display: inline;
}
.center {
	text-align: center;
	margin: 0px auto;
}
/* 导航	*/
.navbar {
	position: relative;
	/*width:100%;*/
	height: 80px;
	/*float:left;*/
	margin-bottom: 0px;
	text-transform: uppercase;
	border-right: 1px solid #ddd;
}
.navbar .nav {
	font-size: 106%;
	font-weight: 700;
	margin: 0;
	width: 100%;
}
.navbar .nav > li {
	position: relative;
}
.navbar .nav > li > a {
	position: relative;
	color: #ec6c00;
	text-shadow: none;
	display: block;
	padding: 14px 15px 14px 15px;
	text-align: center;
	border-left: 1px solid #ddd;
	line-height: 20px;
	height: 52px;
}
.navbar .nav > li > a i {
	display: block;
	margin: 0 auto 10px;
	font-size: 125%;
}

/* 小于 iPad 竖屏的宽度 768 像素 */
@media (max-width:767px) {
.navbar {
	height: 50px;
	background: #fff;
	width: 100%;
	border: none;
	border-top: 2px solid #ae4b1b;
	position: fixed;
	bottom: 0;
	z-index: 999px;
}
.navbar .nav {
	font-size: 100%;
	margin:0 2%;
}
.navbar .nav > li {
	width: 16%;
}
.navbar .nav > li > a {
	line-height: 1.7;
	padding: 12px 0;
}
.navbar .nav > li:first-child > a {
	border-left: none;
}
}
/*  下拉菜单 */
.navbar .nav li ul {
	display: none;
	z-index: 9999;
	position: relative;
	margin: 0px;
	margin-top: 0px !important;
	list-style-type: none;
	text-transform: none;
}
.navbar .nav li:hover ul {
	position: absolute;
	display: block;
	list-style-type: none;
}
.navbar .nav li ul li {
	margin: 0;
	padding: 0;
	width: 150px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	transition: all 0.3s;
	cursor: pointer;
}
.navbar .nav li ul li a {
	height: 25px;
	line-height: 25px;
	color: #fff;
	padding: 10px 30px;
	margin: 0;
	display: block;
	text-decoration: none;
	font-weight: 400;
}
.navbar .nav li ul a.last {
	padding: 0px 0px 20px 30px;
}
.navbar .nav li ul li a.first {
	padding: 20px 0px 0px 30px;
}
.navbar .nav li ul li a.single {
	padding: 10px 0px 10px 30px;
}
.navbar .nav li ul li:hover a {
	background-color: #b00;
}
/* fixed-nav */
.nav-fixed {
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1020;
}
/* Tabs */
.tabs-left > .nav-tabs li:hover {
	border: none;
	background: #222;
}
.tabs-left > .nav-tabs {
	float: left;
	margin-right: 0px;
	border-right: 0px solid #ddd;
	border: none;
	padding-bottom: 30px;
}
.tabs-left > .nav-tabs > li > a {
	margin: 0px;
	-webkit-border-radius: 0px 0 0 0px;
	-moz-border-radius: 0px 0 0 0px;
	border-radius: 0px 0 0 0px;
}
.tabs-left > .nav-tabs li {
	border: none;
	background-color: #222;
	margin: 0px;
	padding: 0px;
}
.tabs-left > .nav-tabs li:hover {
	border: none;
	background: #222;
}
.tabs-left > .nav-tabs li a:hover {
	border-right: 0px #323232 solid;
	border-bottom: 0px #323232 solid;
	background-color: #111;
}
.tabs-left > .nav-tabs li.active {
	border-right: 0px #323232 solid;
	border-bottom: 1px #323232 solid;
	background-color: #111111;
}
.tabs-left > .nav-tabs li.active a {
	border-right: 0px #323232 solid;
	border-bottom: 0px #323232 solid;
	background-color: #111111;
}
.tabs-left > .nav-tabs li.active a:hover {
	border-right: 0px #323232 solid;
	border-bottom: 0px #323232 solid;
	background-color: #111111;
}
.tabs-left > .nav-tabs > li > a {
	margin-right: 0;
	margin-bottom: 0px;
}
.nav-tabs > li > a {
	width: 120px;
	margin-right: 0;
	margin-bottom: 0px;
}
.tabs-left > .nav-tabs li {
	border-bottom: 1px solid #323232;
	background-color: #222;
}
.tabs-left > .nav-tabs li:hover {
	border-bottom: 1px solid #323232;
	background-color: #222;
}
.nav-tabs {
	margin-bottom: 0px !important;
	border-bottom: 0px solid #DDDDDD;
}
.tab-content {
	border: none;
	margin: 0px;
	padding: 0px;
	-webkit-border-radius: 0 0 0px 0px;
	-moz-border-radius: 0 0 0px 0px;
	border-radius: 0 0 0px 0px;
}
.nav-tabs li {
	border: none;
	text-align: center;
	margin: 0px;
	padding: 0px;
}
.nav-tabs li:hover {
}
.nav-tabs > li > a {
	display: block;
	padding: 10px 30px;
	margin: 0;
	font-size: 150%;
	color: #0062b1;
}
.tabs-left > .nav-tabs > li > a {
	background-color: #222;
	-webkit-border-radius: 0 0 0px 0px;
	-moz-border-radius: 0 0 0px 0px;
	border-radius: 0 0 0px 0px;
	color: #fff;
	display: block;
	padding: 20px 30px;
	margin: 0px;
	border: 0px #323232 solid;
	border-left: 0px;
	border-right: 0px;
	border-top: 0px;
	text-align: left;
	width: 121px;
}
.nav-tabs > .active > a, .nav-tabs > .active > a:hover, .nav-tabs > .active > a:focus {
	border: none;
	-moz-border-bottom-colors: none;
	-moz-border-left-colors: none;
	-moz-border-right-colors: none;
	-moz-border-top-colors: none;
	cursor: default;
}
.nav-tabs li a:hover {
	border-right: 0px #323232 solid;
}
.nav-tabs li.active {
}
.nav-tabs > li.active > a {
	border-bottom: 2px #e8390d solid;
	color: #e8390d;
}
.nav-tabs li.active a:hover {
	border-right: 0px #323232 solid;
}
/* 带微信客服电话的返回顶部 */
.izl-rmenu {
	position: fixed;
	right: 0;
	bottom: 10px;
	/*background:url(../images/r_b.png) 0px bottom no-repeat;*/
	z-index: 999;
	width: 72px;
}
.izl-rmenu .rm-btn {
	width: 72px;
	height: 73px;
	margin-bottom: 1px;
	padding: 0;
	cursor: pointer;
	position: relative;
}
.izl-rmenu .btn-write {
	background: url(images/r_write.png) 0px 0px no-repeat;
	background-color: #6da9de;
}
.izl-rmenu .btn-write:hover {
	background-color: #488bc7;
}
.izl-rmenu a.btn-write, .izl-rmenu a.btn-write:visited {
	background: url(images/r_write.png) 0px 0px no-repeat;
	background-color: #6da9de;
	text-decoration: none;
	display: block;
}
.izl-rmenu .btn-wx {
	background: url(images/r_wx.png) 0px 0px no-repeat;
	background-color: #78c340;
}
.izl-rmenu .btn-wx:hover {
	background-color: #58a81c;
}
.izl-rmenu .btn-wx .pic {
	position: absolute;
	left: -160px;
	top: 0px;
	display: none;
	width: 160px;
	height: 160px;
	max-width: none;/* 必须有这一句，否则bootstrap 自带的 img 的 max-width:100% 属性会导致图片宽度和.btn的宽度一样。 */
}
.izl-rmenu .btn-phone {
	background: url(images/r_phone.png) 0px 0px no-repeat;
	background-color: #fbb01f;
}
.izl-rmenu .btn-phone:hover {
	background-color: #ff811b;
}
.izl-rmenu .btn-phone .phone {
	background-color: #ff811b;
	position: absolute;
	width: 160px;
	left: -160px;
	top: 0px;
	line-height: 73px;
	color: #FFF;
	font-size: 18px;
	text-align: center;
	display: none;
}
.izl-rmenu .btn-top {
	background: url(images/r_top.png) 0px 0px no-repeat;
	background-color: #666666;
	display: none;
}
.izl-rmenu .btn-top:hover {
	background-color: #444;
}
/* -------------------------------- 以下为针对本模板的定制型样式 ---------------------------------*/
/* 全局 */
.wrap {
	width: 100%;
}
.main-color {
	color: #ec6c00;/* 主前景色 */
}
.assist-color {
	color: #ec6c00;/* 辅助前景色 */
}
.assist-color-2 {
	color: #8bb1d5;/* 第二辅助前景色 */
}
a.assist-color-2:hover {
	color: #777;
}
.main-bg-color {
	background-color: #ec6c00;/* 主背景色 */
}
.assist-bg-color {
	background-color: #0062b1;/* 辅助背景色 */
}
.wrap-sideborder {
	border-left: 15px solid #f3f3f3;
	border-right: 15px solid #f3f3f3;
}
.img-illu {
	border: 1px solid #e6e6e6;
	padding: 1px;
}
a.link-more {
	font-weight: 400;
	display: inline-block;
	font-size: 87.5%;
	position: absolute;
	top: 10px;
	right: 10px;
}
.btn-square {
	display: block;
	background-color: #e8390d;
	color: #fff;
	border-radius: 3px;
}
.btn-square i {
	display: block;
	font-size: 250%;
	text-align: center;
	padding: 10px 0 0;
	text-decoration: none;
}
.btn-square p {
	text-indent: 0;
}
.btn-square:hover {
	background-color: #0062b1;
	color: #fff;
	text-decoration: none;
}
.btn-square:visited {
	color: #fff;
	text-decoration: none;
}
.nav-wrap {
	border-bottom: 3px solid #ec6c00;
}
.foot-wrap {
	padding: 20px;
	color: #ffedde!important;
}
.foot-wrap p {
	text-indent: 0;
	line-height: 1.4;
}
.foot-wrap a {
	color: #ffedde;
}
.foot-wrap a:hover {
	color: #fff;
}

@media (max-width:767px) {
.nav-wrap {
	border-bottom: 2px solid #ae4b1b;
}
.foot-wrap {
	padding: 10px 0;
	margin: 0 20px;
	background: transparent;
	text-align: center;
	color: #999!important;
}
.foot-wrap p {
	text-indent: 0;
	line-height: 1.4;
	font-size: 75% !important;
}
.foot-wrap h5 {
	font-size: 75%;
}
}
/* 首页  */
.Button {
	display: inline-block;
	padding: 20px;
	margin: 0;
	background-color: #da0d25;
	background-position: center center;
	background-repeat: no-repeat;
	color: #7a0715;
	text-shadow: none;
	vertical-align: middle;
	cursor: pointer;
	border: 0;
	-ms-transition: color 300ms ease, background-color 300ms ease;
	-webkit-transition: color 300ms ease, background-color 300ms ease;
	-moz-transition: color 300ms ease, background-color 300ms ease;
	-o-transition: color 300ms ease, background-color 300ms ease;
	transition: color 300ms ease, background-color 300ms ease;
}
.Button:hover, .Button:focus {
	color: #7a0715;
}
.Button.Small {
	padding: 5px 10px;
	font-size: small;
}
.Button.Block {
	padding: 0;
	width: 1000px;
	height: auto;
}
.Button h1 {
	font-size: 2em;
	line-height: 1.25em;
	color: #FFF;
}
/* Custom Flipster Styles */
.flipster {
	padding-bottom: 0;
}
.pull-right {
	float: right;
}
.pull-left {
	float: left;
}
.hide {
	display: none;
}
.show {
	display: block;
}
.invisible {
	visibility: hidden;
}
.affix {
	position: fixed;
}
.banner-custom-text {
	position: absolute;
	top: 0;
	left: 60px;
	right: 0;
	margin: 0 auto;
	margin-top: 32%;
	text-align: left;
	text-transform: uppercase;
}
.banner-custom-text p {
	color: #fff;
	font-size: 150%;
	line-height: 1.5;
	font-weight: 700;
}
/* 盒模型 */
.box-wrap {
	border: 1px solid #ddd;
	border-top: none;
}
.box-tittle {
	background-color: #f1f1f1;
	border-bottom: 1px solid #ddd;
	position: relative;
	height: 40px;
}
.box-tittle h5 {
	background-color: #fff;
	border-right: 1px solid #ddd;
	border-top: 3px solid #ae4b1b;
	padding: 5px 30px 4px 10px;
	font-weight: 400;
	display: inline-block;
	font-size: 125%;
	color: #0062b1;
}
/* tab切换@SuperSlider */
.slidetxtbox {
	text-align: left;
}
.slidetxtbox .hd {
	background: #f1f1f1;
}
.slidetxtbox .hd ul {
	zoom: 1;
	list-style: none;
	margin: 0;
	border-bottom: #ddd 1px solid;
	height: 40px;
}
.slidetxtbox .hd ul li {
	float: left;
	line-height: 1.7;
}
.slidetxtbox .hd ul li a {
	padding: 8px 30px 4px 10px;
	display: block;
	font-size: 125%;
}
.slidetxtbox .hd ul li a:hover {
	text-decoration: none
}
.slidetxtbox .hd ul li.on a {
	background: #fff;
	border-top: 3px solid #f80;
	color: #0062b1;
	border-right: 1px solid #ddd;
	border-left: 1px solid #ddd;
	padding: 5px 30px 4px 10px;
}
.slidetxtbox .bd {
	padding: 0;
}
.slidetxtbox .bd ul li {
	font-size: 107.5%;
	line-height: 1.7;
}
/* 内页  */
/* 内页banner */
.page-banner {
	text-align: center;
}
/* 侧边栏 */
.side-wrap {
	background: #eee;
}
.side-tittle {
	position: relative;
	height: 40px;
	line-height: 40px;
	background-color: #e8390d;
	color: #fff;
	font-size: 125%;
	font-weight: 400;
	padding: 0 10px;
}
/* 侧边栏目录 */
.sidenav {
	list-style: none;
	margin: 0;
	padding: 0;
}
.sidenav li {
	border-bottom: 1px solid #ccc;
}
.sidenav li:last-child {
	border-bottom: none;
}
.sidenav li a {
	padding: 8px 10px;
	display: block;
	font-size: 112.5%;
}
.sidenav li a:hover {
	background-color: #ccc;
	color: #000;
}
/* 右边栏 */
.side-illu {
	border-radius: 50%;
}
/* 主内容区 */
.maincontent-wrap p {
	line-height: 1.7;
	padding: 20px 30px 5px;
	color: #656565;
	text-indent: 0;
}
.maincontent-wrap ul li, .maincontent-wrap ol li {
	font-size: 125%;
	line-height: 1.9;
	margin: 10px 30px;
	color: #323232;
}
.maincontent-wrap .list-1 li, .maincontent-wrap .list-2 li, .maincontent-wrap .list-3 li, .maincontent-wrap .list-4 li, .maincontent-wrap .list-5 li {
	margin: 0;
	font-size: 100%;
}
.maincontent-wrap .list-1 li {
	line-height: 45px;
}
.illu-search {
	width: 300px;
}

@media (max-width:767px) {
.maincontent-wrap p {
	padding: 10px 0;
	color: #323232;
	font-size: 100%;
	text-indent: 0;
}
.maincontent-wrap ul li, .maincontent-wrap ol li {
	font-size: 100%;
	margin: 10px 0;
	color: #323232;
}
.maincontent-wrap .list-1, .maincontent-wrap .list-1 li, .maincontent-wrap .list-2, .maincontent-wrap .list-2 li, .maincontent-wrap .list-3, .maincontent-wrap .list-3 li, .maincontent-wrap .list-4, .maincontent-wrap .list-4 li, .maincontent-wrap .list-5, .maincontent-wrap .list-5 li {
	margin: 0;
	padding: 0;
	font-size: 100%;
	height: auto;
	line-height: 1.6;
	float: none;
	z-index: 9;
}
}
/* 产品分类导航 */
.product-item-wrap{
	margin:40px 0 0;
	padding:0;
	list-style:none;
}
.product-item-wrap li {
	float:left;
	display:inline;
	font-size:14px!important;
	margin:0!important;
	line-height:1.7!important;
	color: #ec6c00!important;
}
/* 产品内容区 */
.products-wrap {
	min-height: 355px;
}
.productcontent-wrap p {
	font-size: 112.5%;
	line-height: 1.7;
	padding: 10px 30px 0;
	color: #323232;
	text-indent: 0;
}
.productcontent-wrap ul li, .productcontent-wrap ol li {
	font-size: 112.5%;
	line-height: 1.7;
	margin: 10px 30px;
	color: #323232;
}
.productcontent-img-wrap {
	width: 90%;
	padding: 1px;
	background: #fff;
	border: 1px solid #ddd;
	margin: 70px 0 0;
}

@media (max-width:767px) {
.products-wrap {
	min-height: auto;
	background: #fff;
	border-bottom: 1px dashed #ddd;
}
.productcontent-wrap p {
	padding: 5px 0;
	color: #323232;
	font-size: 100%;
	text-indent: 0;
}
.productcontent-wrap ul li, .productcontent-wrap ol li {
	font-size: 100%;
	margin: 10px 0;
	color: #323232;
}
.productcontent-img-wrap {
	width: 98%;
	padding: 1px;
	background: #fff;
	border: 1px solid #ddd;
	margin: 10px auto;
}
}
/* 追溯系统 */
.search-wrap {
	margin: 120px auto 0;
}
.group-icon {
	display: inline-block;
	position: relative;
}
.group-overlying-icon {
	position: absolute;
	left: -13px;
	bottom: 5px;
	z-index: 9;
	font-size: 80%;
}
.result-wrap {
	margin: 40px auto 0;
}

@media (max-width:767px) {
.search-wrap {
	margin: 30px auto 0;
}
.result-wrap {
	margin: 10px auto 0;
}
}
/* 移动端产品追溯页面 */
.m-main-bgcolor {
	background: #ffedde;
}
.m-assist-bgcolor {
	background: #ec6c00;
}
.m-main-color {
	color: #ec6c00;
}
.m-table-list {
	width: 100%;
	border: none;
}
.message-sort {
	cursor: pointer;
}
.m-table-list tr.child-row {
	display: none;
}
.m-table-list tr {
	border-bottom: 1px solid #dfdfdf;
}
.m-table-list tr:last-child {
	border-bottom: none;
}
.m-table-list td {
	padding: 10px 3px;
}
.m-table-list tr td:first-child {
	width: 100px;
}
.m-table-list .btn {
	margin: 0;
}
/* 华鼎 */

body {
	font-family: Tahoma, SimHei, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 15px;
}
.bs-docs-nav {
	background: white none repeat scroll 0 0;
	overflow: hidden;
}
.navbar-brand {
	font-size: 18px;
	height: 86px;
	line-height: 20px;
	padding: 6px 0 0 15px;
}
.flower_main {
	padding-top: 0;
	position: relative;
}
.mt_100 {
	margin-top: 12px;
}
#showimg01 img.img_big, #showimg02 img.img_big {
	width: 600px;
	max-width: 600px;
}
.bs-docs-footer {
	margin-top: 20px;
	text-align: center;
}
.bs-docs-footer-links {
	color: #999;
	margin-top: 10px;
	padding-bottom: 10px;
	padding-left: 0;
}
.bs-docs-footer-links li {
	display: inline;
	padding: 0 2px;
}
.bs-docs-footer-links li:first-child {
	padding-left: 0;
}
.thumbnail {
	background-color: #fff;
	border: medium none;
	border-radius: 0;
	box-shadow: none;
	transition: none 0s ease 0s;
}
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
	background-color: #14823b;
}
.thumbnail {
	padding: 0;
}
.thumbnail .caption {
	text-align: center;
}
.thumbnail > img, .thumbnail a > img {
}
a {
	color: #ec6c00;
}
.thumbnail .caption a {
	color: #000;
}
a:hover, a:focus, a .caption:hover, a .caption:focus, .thumbnail .caption a:hover, .thumbnail .caption a:focus {
	color: #ec6c00;
	text-decoration: none;
}
.showme, .showme ul, .showme ul li {
	padding: 0;
}
.showme {
	background: #fff none repeat scroll 0 0;
	display: none;
	opacity: 1;
	overflow: hidden;
	padding: 15px 20px;
}
.showimg {
	opacity: 1;
}
.close {
	right: 3px;
	top: 0;
}
.showme li {
	float: left;
	list-style: outside none none;
	overflow: hidden;
}
.li_left {
	margin-left: 0;
}
.li_right {
}
.li_right p {
	line-height: 3;
}
.navbar-fixed-top, .navbar-fixed-bottom {
	left: 0;
	position: fixed;
	right: 0;
	z-index: 1000;
}
.title {
	background: #14823b none repeat scroll 0 0;
	color: #fff;
	font-size: 14px;
	font-weight: normal;
	padding: 2px;
}
.img_title {
	margin-bottom: 22px;
	margin-top: 12px;
	max-height: 30px;
}
.flower_content {
	margin-left: -5%;
	margin-top: 12px;
}
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
	/*border-top: 0 solid #ddd;*/
	line-height: 1.42857;
	padding: 8px;
	vertical-align: top;
}
.pagination > li > a, .pagination > li > span {
	background-color: #fff;
	border: 1px solid #ddd;
	color: #14823b;
	float: left;
	line-height: 1.42857;
	margin-left: -1px;
	padding: 6px 12px;
	position: relative;
	text-decoration: none;
}
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
	background-color: #14823b;
	border-color: #14823b;
	color: #fff;
	cursor: default;
	z-index: 2;
}
.left_nav {
	margin-top: 11px;
}
.f_text {
	color: #14823b;
	font-weight: bold;
}
.navbar-nav > li {
	background: rgba(0, 0, 0, 0) url("../../images/banner.gif") no-repeat scroll 0 -50px;
	margin-top: 18px;
	text-indent: -9999px;
}
.navbar-nav > .index {
	background-position: 0 -50px;
	width: 32px;
}
.navbar-nav > .about {
	background-position: -32px -50px;
	width: 78px;
}
.navbar-nav > .product {
	background-position: -110px -50px;
	width: 80px;
}
.navbar-nav > .news {
	background-position: -190px -50px;
	width: 80px;
}
.navbar-nav > .contact {
	background-position: -270px -50px;
	width: 80px;
}
.navbar-nav > .weibo {
	background-position: -350px -50px;
	width: 76px;
}
.navbar-nav > .weixin {
	background-position: -426px -50px;
	width: 56px;
}
.navbar-nav > .down {
	background-position: -482px -50px;
	width: 80px;
}
.navbar-nav > .index_active, .navbar-nav > li a:hover, .navbar-nav > li a:focus {
	background: rgba(0, 0, 0, 0) url("../../images/banner.gif") no-repeat scroll 0 0;
}
.navbar-nav > .about_active, .navbar-nav > .about a:hover, .navbar-nav > .about a:focus {
	background: rgba(0, 0, 0, 0) url("../../images/banner.gif") no-repeat scroll -32px 0;
}
.navbar-nav > .product_active, .navbar-nav > .product a:hover, .navbar-nav > .product a:focus {
	background: rgba(0, 0, 0, 0) url("../../images/banner.gif") no-repeat scroll -110px 0;
}
.navbar-nav > .news_active, .navbar-nav > .news a:hover, .navbar-nav > .news a:focus {
	background: rgba(0, 0, 0, 0) url("../../images/banner.gif") no-repeat scroll -190px 0;
}
.navbar-nav > .contact_active, .navbar-nav > .contact a:hover, .navbar-nav > .contact a:focus {
	background: rgba(0, 0, 0, 0) url("../../images/banner.gif") no-repeat scroll -270px 0;
}
.navbar-nav > .weibo a:hover, .navbar-nav > .weibo a:focus {
	background: rgba(0, 0, 0, 0) url("../../images/banner.gif") no-repeat scroll -350px 0;
}
.navbar-nav > .weixin a:hover, .navbar-nav > .weixin a:focus {
	background: rgba(0, 0, 0, 0) url("../../images/banner.gif") no-repeat scroll -426px 0;
	width: 56px;
}
.navbar-nav > .down_active, .navbar-nav > .down a:hover, .navbar-nav > .down a:focus {
	background: rgba(0, 0, 0, 0) url("../../images/banner.gif") no-repeat scroll -482px 0;
}
#next img, #prev img {
	cursor: pointer;
}
#f_logo1, #f_logo2 {
	width: 1200px;
	position: absolute;
	z-index: 9999;
	left: 0px;
	display: block;
	bottom: 90px;
}
#f_logo2 {
	display: none;
}
#f_logo1 p, #f_logo2 p {
	padding: 0;
	text-indent: none;
}
#f_logo1 p img, #f_logo2 p img {
	text-indent: 0;
}
